home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 1 / LIGHT-ROM 1 (Amiga Library Services)(1994).iso / ffdisks / d880.lha / Oberon / O3Demo1.lzh / OEd_Menu.txt < prev    next >
Text File  |  1993-01-14  |  5KB  |  171 lines

  1. ; *************************    OEd Menu Layout:    *************************
  2. ;
  3. ; There be an arbitrary number of menu strips. Each must be introduced
  4. ; by an statement of the form
  5. ;
  6. ;   MENU <name>
  7. ;
  8. ; The following lines specify the menu's items. An item may be a seperator
  9. ; line or a selectable menu item. Seperator lines are defined by
  10. ;
  11. ;   SEPARATOR
  12. ;
  13. ; Selectable items are created with a statement like
  14. ;
  15. ;   ITEM <name> <command>
  16. ;
  17. ; where <name> is the name of the item and <command> is an OEd command
  18. ; specifying the action a selection of the item should cause.
  19. ;
  20. ; Subitems are currently not supported.
  21. ;
  22. ; Menu Shortcuts are not defined here. The file Oberon:OEd_Keys.txt is used
  23. ; for this.
  24. ;
  25. ; IMPORTANT NOTES:
  26. ;
  27. ;   OEd does not check if your menu fits on the screen. So if one of your
  28. ;   menus is too big and you're not using AmigaOS 2.0 your machine may
  29. ;   crash.
  30. ;
  31. ;   The lines of this text mustn't be longer that 256 characters.
  32. ;
  33.  
  34. MENU "Project"
  35.  
  36. ITEM      "Load..."             (load)
  37. ITEM      "New Window..."       (newwindow)
  38. ITEM      "Save"                (save)
  39. ITEM      "Save as..."          (saveas)
  40. ITEM      "Save Block..."       (bsave)
  41. ITEM      "Insert File..."      (insfile)
  42. SEPARATOR
  43. ITEM      "Print"               (print)
  44. ITEM      "Print Block"         (printblock)
  45. ITEM      "Print As..."         (printas)
  46. ITEM      "Print Block As..."   (printblkas)
  47. SEPARATOR
  48. ITEM      "Hide"                (hide)
  49. ITEM      "Reveal..."           (reveal)
  50. SEPARATOR
  51. ITEM      "Screen Mode..."      (screenmode)
  52. SEPARATOR
  53. ITEM      "Quit"                (quit)
  54. ITEM      "About..."            (about)
  55.  
  56.  
  57. MENU "Search"
  58.  
  59. ITEM      "Find..."             (find)
  60. ITEM      "Next"                (next)
  61. ITEM      "Previous"            (prev)
  62. SEPARATOR
  63. ITEM      "Find-Replace..."     (findrep)
  64. ITEM      "Next-Replace"        (nextrep)
  65. ITEM      "Previous-Replace"    (prevrep)
  66. SEPARATOR
  67. ITEM      "Find Word"           (execrexx (options results; getword; findstr result; next))
  68. SEPARATOR
  69. ITEM      "Case sensitive"      (casesens)
  70. ITEM      "Word by Word"        (wordbyword)
  71.  
  72.  
  73. MENU "Block"
  74.  
  75. ITEM      "Begin"               (bbegin)
  76. ITEM      "End"                 (bend)
  77. ITEM      "Mark All"            (markall)
  78. ITEM      "Copy Block"          (bcopy)
  79. ITEM      "Move"                (bmove)
  80. ITEM      "Delete"              (bdelete)
  81. SEPARATOR
  82. ITEM      "Cut"                 (cut)
  83. ITEM      "Copy"                (copy)
  84. ITEM      "Paste"               (paste)
  85. SEPARATOR
  86. ITEM      "TAB right"           (btabright)
  87. ITEM      "TAB left "           (btableft)
  88. SEPARATOR
  89. ITEM      "Unmark"              (bunmark)
  90.  
  91.  
  92. MENU "Special"
  93.  
  94. ITEM      "Enter Rexx Cmd..."   (enterrexx)
  95. ITEM      "Execute Rexx Cmd"    (execrexx)
  96. ITEM      "Stop Rexx (HI)"      (stoprexx)
  97. SEPARATOR
  98. ITEM      "Goto Line..."        (gotoy)
  99. ITEM      "Goto Last Change"    (gotolastch)
  100. SEPARATOR
  101. ITEM      "Matching Bracket"    (mbracket)
  102. ITEM      "Change Case"         (changecase)
  103. SEPARATOR
  104. ITEM      "Undo"                (undo)
  105. ITEM      "Redo"                (redo)
  106. ITEM      "Undo All"            (undoall)
  107. ITEM      "Redo All"            (redoall)
  108. ITEM      "Clear All Undos"     (clearundos)
  109. SEPARATOR
  110. ITEM      "Undelete Line"       (undeline)
  111.  
  112.  
  113. MENU "Macros"
  114.  
  115. ITEM      "Start Learning"      (startmacro (t:RexxMacro_F10.oed))
  116. ITEM      "Stop Learning"       (stopmacro)
  117. ITEM      "Play Macro"          (rx (t:RexxMacro_F10.oed))
  118.  
  119.  
  120. MENU "Oberon"
  121.  
  122. ITEM      "Parse"               (parse)
  123. ITEM      "Compile..."          (compile)
  124. ITEM      "Link..."             (link)
  125. ITEM      "Make..."             (make)
  126. ITEM      "Execute..."          (execute)
  127. SEPARATOR
  128. ITEM      "Compiler Options..." (coptions)
  129. SEPARATOR
  130. ITEM      "Next Error"          (nexterror)
  131. ITEM      "First Error"         (firsterror)
  132. ITEM      "Reload Errorfile"    (reloaderrs)
  133.  
  134.  
  135. MENU "Options"
  136.  
  137. ITEM      "StackChk"            (stackchk)
  138. ITEM      "OvflChk"             (ovflchk)
  139. ITEM      "RangeChk"            (rangechk)
  140. ITEM      "CaseChk"             (casechk)
  141. ITEM      "ReturnChk"           (returnchk)
  142. ITEM      "NilChk"              (nilchk)
  143. ITEM      "TypeChk"             (typechk)
  144. ITEM      "OddChk"              (oddchk)
  145. ITEM      "AutRegPars"          (autoregpars)
  146. ITEM      "Clear Vars"          (clearvars)
  147. ITEM      "New Symbolfile"      (newsymfile)
  148. SEPARATOR
  149. ITEM      "SmallCode"           (smallcode)
  150. ITEM      "SmallData"           (smalldata)
  151. ITEM      "Garbage-Collector"   (garbagecollector)
  152. ITEM      "Language Extensions" (extensions)
  153. SEPARATOR
  154. ITEM      "Debug"               (debug)
  155. SEPARATOR
  156. ITEM      "68010"               (mc68010)
  157. ITEM      "68020"               (mc68020)
  158. ITEM      "68030"               (mc68030)
  159. ITEM      "68881/68882"         (mc68881)
  160.  
  161.  
  162. MENU "Settings"
  163.  
  164. ITEM      "Insert"              (insert)
  165. ITEM      "Layout Mode"         (layout)
  166. ITEM      "Auto Uppercase"      (autouc)
  167. SEPARATOR
  168. ITEM      "Create Icons?"       (icons)
  169. ITEM      "Set Script Flag?"    (script)
  170.  
  171.